home *** CD-ROM | disk | FTP | other *** search
/ Steuer Profi 1997 / Steuer Profi 97.iso / haushaltsbuch v3.0 / rexx / hhbtodopus.hhb < prev   
Text File  |  1994-03-07  |  401b  |  22 lines

  1. /* HHB V3.0 -> DirectoryOpus 4.0 */
  2.  
  3. options results
  4.  
  5. address 'DOPUS.1'
  6. ClearWin
  7. AddCustEntry '"Angezeigte Buchungs-Liste:"' 0 1 0 0 '-1' -1
  8. AddCustEntry '"  "' 0 1 0 0 '-1' -1
  9.  
  10. address 'Haushalt.1'
  11.  
  12. MOVE TOP
  13. GET ENTRY
  14. text = result
  15.  
  16. do while (text ~= "EOL")
  17.     address 'DOPUS.1'    AddCustEntry "'"text"'" 0 1 0 0 '-1' -1
  18.     address 'Haushalt.1' MOVE NEXT
  19.     address 'Haushalt.1' GET ENTRY
  20.     text = result
  21. end
  22.